.aboutUs {
  /* sizing */
  width: 100%;
  height: fit-content;
  padding-bottom: 3%;

  /* color */
  background-color: var(--dk-b);
}

.aboutUs img {
  /* sizing */
  width: 100%;
  height: 40vh;

  /* position */ 
  position: relative;
  top: 0;
  z-index: 1;

  /* color */
  background-color: white;
  border: none;
}

.aboutUs h2 {
  /* sizing */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  
  /* position */
  position: relative;
  z-index: 2;
  translate: 0 -50%;
  
  /* color */
  background-color: var(--y);
  color: black;

  border-bottom: 4px solid white;

  text-transform: capitalize;

  font-weight: 700;
}

.aboutUs p {
  /* sizing */
  width: 90%;
  margin-right: auto;
  margin-left: auto;

  /* text */
  text-align: center;

  /* color */
  color: white;
  
}

.aboutUs a {
   /* sizing */
   width: 60%;
   margin-right: auto;
   margin-left: auto;
   margin-top: 2%;
   margin-bottom: 2%;
   padding-top: 0.5rem;
   padding-bottom: 0.5rem;
 
   /* display */
   display: block;
 
   /* text */
   text-align: center;
   text-transform: uppercase;
   font-weight: 900;
 
 
 
   /* color */
   background-color: var(--y);
   color: black;
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
@media (min-width: 768px) {
  main p{
    /* sizing */
    width: 70%;
    margin-left: auto;
    margin-right: auto;

    /* font */
    font-size: 120%;
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */